home *** CD-ROM | disk | FTP | other *** search
-
- /* Paßword-Check by E. Dumfahrt */
-
- /* THE BYTEHUNTER ! */
-
- /* Coded in 1992 */
- #include <exec/types.h>
- #include <intuition/intuition.h>
- #include <graphics/gfx.h>
-
-
- struct IntuitionBase *IntuitionBase;
- struct GfxBase *GfxBase;
- struct Window *Window;
-
- #include <libraries/dos.h>
- #include "dh0:stdwindow.h"
-
-
-
-
- main()
- {
-
-
- char s[40];
- char c[20];
-
- open_libs();
- goto Beginn;
- Falsch:
-
- {
-
-
- Window = (struct Window *)
- open_window(0,0,640,256,NULL, BORDERLESS, NULL, NULL);
-
- if (Window == NULL) exit (FALSE);
-
- DisplayAlert(DEADEND_ALERT,
- "\3\0\45 Wrong Password ! Rat !!! \0c\0\0\75 Press Mousebutton ! \0c\1\0\75 GURU-Eddie ! Hähä !\0\0",70);
- #asm
- move $0,34
- #endasm
-
- }
- Beginn:
- {
- puts(" ");
- puts(" ");
- puts("PASSWORD-CHECK BY E. DUMFAHRT");
- puts(" ");
- puts(" ");
- puts("PassWord:");
- gets(c);
- while( strcmp(c,"Ed!") )
- goto Falsch;
-
- }
- }
-
-
-
-